home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000383_interran@uluru.Stanford.EDU_Mon Mar 14 03:58:19 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  2KB

  1. Received: from uluru.Stanford.EDU by cs.umb.edu with SMTP id AA06448
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Mon, 14 Mar 1994 14:55:33 -0500
  3. Received: by uluru.Stanford.EDU (4.1/inc-1.0)
  4.     id AA22033; Mon, 14 Mar 94 11:58:19 PST
  5. Date: Mon, 14 Mar 94 11:58:19 PST
  6. From: interran@uluru.Stanford.EDU (John Interrante)
  7. Message-Id: <9403141958.AA22033@uluru.Stanford.EDU>
  8. To: tex-k@cs.umb.edu
  9. Subject: dvipsk-5.528a: distclean should remove PSfonts/Makefile
  10.  
  11. I just fetched a complete set of tar files from ftp.cs.umb.edu and
  12. started installing TeX and friends from scratch.  Here's the first bug
  13. that I caught and my fix for it.
  14.  
  15. I also fetched the tex-k mail archive, so I used someone's patches to
  16. let me merge dvipsk-5.528a, web2c-6.1, and xdvik-1.7 into one
  17. directory (which I called ktexmf-5.528a,6.1,1.7).  I wasn't satisfied
  18. with the set of Makefiles after the first configure, so I changed one
  19. of the Makefile.in's and said "make distclean" so I could redo the
  20. configure from scratch.  I noticed that "make distclean" didn't remove
  21. dvipsk/PSfonts/Makefile.  Perhaps the parent Makefile should call
  22. "make distclean" recursively in PSfonts.  I just made it remove the
  23. Makefile itself since PSfonts shouldn't ever contain anything else
  24. that needs removing.
  25.  
  26. --- dvipsk/Makefile.in.save    Thu Mar  3 10:58:31 1994
  27. +++ dvipsk/Makefile.in    Mon Mar 14 11:03:00 1994
  28. @@ -380,7 +380,7 @@
  29.      rm -f *.dvi *.lj
  30.  
  31.  distclean:: clean
  32. -    rm -f Makefile config.status c-auto.h *.pool
  33. +    rm -f Makefile PSfonts/Makefile config.status c-auto.h *.pool
  34.  
  35.  # Although we can remake configure and c-auto.h.in, we don't remove
  36.  # them, since many people may lack Autoconf.  Use configclean for that.